home *** CD-ROM | disk | FTP | other *** search
/ EuroCD 3 / EuroCD 3.iso / Programming / RTGMaster / demos / moon / RANDOM.H < prev    next >
Encoding:
C/C++ Source or Header  |  1998-06-24  |  378 b   |  9 lines

  1. //----------------------------------------------------------------------------
  2. // Borland C++ compatible random functions:
  3. //----------------------------------------------------------------------------
  4.  
  5. #define  randomize() srand ( time (NULL) )
  6. //#define  random(num) (int)(((long)rand()*(num))/(RAND_MAX+1))
  7. #define  random(num) (int)(((long)(rand()%65535)*(num))/(65535+1))
  8.  
  9.